home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python-1.4 / Docs / Amiga / os_module < prev    next >
Text File  |  1998-06-24  |  927b  |  42 lines

  1.  
  2.  
  3.                                  OS MODULE
  4.  
  5.                       Irmen de Jong - ijong@gak.nl
  6.                                27 dec. 1996
  7.  
  8.  
  9. This document describes the module `os'.  This is the portable interface to
  10. the `amiga' module (`posix' module on Unix systems).  You should always use
  11. this module instead of the `amiga' module.
  12.  
  13. This module includes everything that the `amiga' module exports.
  14.  
  15.  
  16. Additional functions in `os' module:
  17.  
  18.     execl, execle, execlp, execlpe, execvp, execvpe
  19.  
  20.     All of these raise an exception because they are not implemented.
  21.  
  22.   DATA MEMBERS: (Items marked (*): see below, ABOUT ENVIRONMENT)
  23.  
  24.     curdir    : ''
  25.     defpath    : 'C:'
  26.     name    : 'amiga'
  27.     pardir    : '/'
  28.     pathsep    : ';'
  29.     sep        : '/'
  30.  
  31.  
  32.   SUB MODULES:
  33.  
  34.     path    (=amigapath module. Always use os.path instead of amigapath)
  35.  
  36.  
  37. For documentation, see regular docs on the os module.
  38.  
  39.  
  40. SEE ALSO: amiga module, amigapath module
  41.  
  42.